* {
    padding: 0;
    margin: 0;
    box-sizing: border-box; /* Para que los elementos ocupen el espacio que realmente necesitan */
    font-family: 'Poppins', sans-serif;
}

/* Para toda la barra superior blanca */
#hblanco {
    background-color:  white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px;
}

#hblanco img {
    width: 150px;
    height: auto;
}

#menub {
    display: flex;
    gap: 20px;
}

#menub a {
    text-decoration: none;
    color: black;
}

#menub a:hover {
    color: gray;
}

#hnegro {
    width: 100%;
    background-color:  black;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px;
    padding-top: 10px;
}

#menun {
    display: flex;
    gap: 50px;
}

#menun a {
    text-decoration: none;
    color: white;
}

#menun a:hover {
    color: gray;
}

#barra_busquedan {
    width: 100%;
    background-color:  black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
}

#barra_busquedan input {
    height: 35px;
    width: 350px;
    border-radius: 30px;
}

@media (max-width: 430px) {
    img {
        width: 20px;
    }
}
